home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1997 April / macformat-049.iso / mac / Shareware Plus / Developers / dropg++ / usr / src / examples / test.cc < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-17  |  181 b   |  12 lines  |  [TEXT/R*ch]

  1. #include <stdlib.h>
  2. #include <iomanip.h>
  3.  
  4. main()
  5. {
  6.     cout << "Hello, world" << endl;
  7.     cout << dec  << 1234 << ' '
  8.          << hex  << 1234 << ' '
  9.      << oct  << 1234 << endl;
  10.  
  11. }
  12.